home *** CD-ROM | disk | FTP | other *** search
/ InterCD 2000 June / june_2000.iso / Site Building / ActiveEditor / active.CAB / alert.js < prev    next >
Encoding:
Text File  |  2000-03-16  |  250 b   |  17 lines

  1. <!--example of an onclick event with an alert attached-->
  2.  
  3. <script language="javascript">
  4. <!--
  5.  
  6. function example()
  7. {
  8.  
  9. alert("you clicked me!");
  10.  
  11. }
  12. //-->
  13. </script>
  14.  
  15.  
  16.  
  17. <a href="http://www.yahoo.com" onclick="example();">example link</a>